home *** CD-ROM | disk | FTP | other *** search
- //
- // CITInteger include
- //
- // StormC
- //
- // version 2002.01.25
- //
-
- #ifndef CIT_INTEGER_H
- #define CIT_INTEGER_H TRUE
-
- #ifndef CIT_INPUT_H
- #include "CITInput.h"
- #endif
-
- class CITInteger:public CITInput
- {
- public:
- CITInteger();
- ~CITInteger();
-
- void Minimum(LONG min);
- void Maximum(LONG max);
- void Arrows(BOOL b = TRUE);
- void Number(LONG num);
- int Number();
-
- protected:
- virtual Object* NewObjectA(TagItem* tags);
-
- private:
- void setTag(int index,ULONG attr,ULONG val);
-
- TagItem* integerTag;
- };
-
- #endif
-